home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form ffuture
- BackColor = &H00C0C0C0&
- Caption = "New Tools"
- ClientHeight = 1695
- ClientLeft = 1260
- ClientTop = 3120
- ClientWidth = 5925
- Height = 2160
- Left = 1170
- LinkTopic = "Form1"
- ScaleHeight = 1695
- ScaleWidth = 5925
- Top = 2745
- Width = 6105
- Begin vsInForm VSInForm1
- BarColor = &H00C0C0C0&
- BarColorInactive= &H00C0C0C0&
- BarHeight = 25
- BarStyle = 3 'Raised
- ButtonsRight = 3 '3
- CapAlign = 1 'Left Center
- CapColor = &H00800000&
- CapColorInactive= &H00800000&
- Caption = " New Tools"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 9.75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- FrameColor = &H00C0C0C0&
- FrameColorInactive= &H00C0C0C0&
- FrameCorners = 0 'False
- FrameStyle = 3 'Raised Form
- FrameWidth = 8
- Left = 5355
- MinHeight = 2300
- MinWidth = 5600
- PictLeft0 = FFUTURE.FRX:0000
- PictRight0 = FFUTURE.FRX:0152
- PictRight1 = FFUTURE.FRX:0224
- PictRight2 = FFUTURE.FRX:02FE
- Top = 105
- End
- Begin Label Label1
- BackColor = &H0080FFFF&
- BackStyle = 0 'Transparent
- Caption = "Create forms that look the same way in 16 and 32 bits by customizing the form icons with VSINFORM"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 13.5
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 1170
- Left = 210
- TabIndex = 0
- Top = 105
- Width = 5055
- End
- Option Explicit
- Sub Form_Load ()
- VSInform1.CustomFrame = True
- End Sub
- Sub Form_Paint ()
- Print
- End Sub
- Sub vsInForm1_ClickRButton (Button As Integer)
- Select Case Button
- Case 0
- Unload Me
- Case 1
- vsInform1_DblClickCaption
- Case 2
- Me.WindowState = 1
- End Select
- End Sub
- Sub vsInform1_DblClickCaption ()
- If WindowState = 0 Then
- WindowState = 2
- ElseIf WindowState = 2 Then
- WindowState = 0
- End If
- End Sub
-